home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
3_0
/
CUTILSLI
/
UTILITYL
/
ERROR.C
< prev
next >
Wrap
Text File
|
1987-11-10
|
1KB
|
29 lines
/**********************************************
* Filename: Error.c
* Purpose: Error Handling
* Authors: Robert E. Neville
* Date: November 10, 1987
* Functions: NoteError().
* Version 1.0
* Copyright ⌐ 1987 Hummingbird Graphics
***********************************************/
/* These must be redeclared elsewhere */
#define ERRORALERT 400 /* Error Alert RSRC */
/****************************************************************
* Function: NoteError(str1,str2,str3,str4)
* Purpose: Room for Notes as to what error was or is.
* Passed: str1,str2,str3,str4 - Pascal String Ptr.
* Returned: Nothing.
*****************************************************************/
NoteError(str1,str2,str3,str4)
char *str1,*str2,*str3,*str4; /* Ptrs to Pascal Strings */
{
ParamText(str1, str2,str3,str4); /* Pass strings to ParamText */
NoteAlert(ERRORALERT, 0L); /* Issue NoteAlert */
} /* End of NoteError */
/********** End of File **********/